home *** CD-ROM | disk | FTP | other *** search
/ Leonardo the Inventor / Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso / LEOWINMV / SHARED.DIR / 03079_Script_CONTINUE BUTTON HANDLERS < prev    next >
Text File  |  1996-04-01  |  1KB  |  37 lines

  1. -- -----------------------------------------------------------
  2. -- Handler doClickContinueFromIndex returns to the screen
  3. -- before the index and hilites the continue button. It is used
  4. -- in the continue button of the index movie.
  5.  
  6. on doClickContinueFromIndex
  7.   hiliteButton
  8.   returnFromIndex
  9. end
  10.  
  11. -- -----------------------------------------------------------
  12. -- Handler doClickContinueToInventions goes to non animation screen of the
  13. -- inventions movie. It is used for the continue button in the
  14. -- category animation movies.
  15.  
  16. on doClickContinueToInventions
  17.   hiliteButton
  18.   go frame "mark2" of movie the pathName & "InveAnim.dir"
  19. end
  20.  
  21. -- -----------------------------------------------------------
  22. -- Handler doClickContinueToMain hilites the button and goes
  23. -- to the main screen.
  24.  
  25. on doClickContinueToMain
  26.   hiliteButton
  27.   goMain
  28. end
  29.  
  30. -- -----------------------------------------------------------
  31. -- Handler doClickContinueToMenu hilites the button and goes
  32. -- to the menu screen of the current invention's movie.
  33.  
  34. on doClickContinueToMenu
  35.   hiliteButton
  36.   goMenu
  37. end